home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20010306-20010921 / 000009_news@columbia.edu _Fri Mar 9 11:21:17 2001.msg < prev    next >
Internet Message Format  |  2001-09-20  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA27057
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 9 Mar 2001 11:21:15 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id LAA08778
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 9 Mar 2001 11:17:17 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: secure ftp batch binaries/scripts
  11. Date: 9 Mar 2001 16:17:15 GMT
  12. Organization: Columbia University
  13. Message-ID: <98avmb$8i6$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <3aa8f3c4.1027667@jekyl.ab.tac.net>,
  17. Jeff K <jkrinti1@tac.net> wrote:
  18. : On Fri, 09 Mar 2001 05:58:44 GMT, Rick Miller
  19. : <rick.miller@fake.server.cwusa.com> wrote:
  20. : >Jeff Krintila wrote:
  21. : >> I'm currently admin'ing approximately 15 Solaris 2.6 machines.
  22. : >> I have a requirement to transfer sensitive from 14 of the "client"
  23. : >> machines to the "server" machine. I was hoping someone would have
  24. : >> experience with an ftp-like program/script that functions like scp
  25. : >> (non-clear-text user/password authentication and encrypted data).
  26. : >
  27. : >Why not use scp or sftp?
  28. : >
  29. : If I could script scp I would LOVE to do that. scp seems to clear some
  30. : buffer that accepts the password for the user ID that I'm using to
  31. : transfer the file with. Do you have a script that uses scp?
  32. There seems to be an ever-increasing need for network clients that are
  33. both secure and scriptable.  FTP is a prominent case in point; Telnet is
  34. another.
  35.  
  36. The Kermit Project at Columbia University has spent the last several years
  37. adding secure authentication and encryption protocols (Kerberos IV,
  38. Kerberos V, SRP, SSL/TLS) to its communications software to allow a level
  39. of privacy not available with ordinary clients, nor even with SSH and its
  40. relatives.  Since the software was already inherently scriptable, the
  41. result was a secure, scriptable Telnet (and Rlogin) client that could also
  42. transfer and manage files with Kermit protocol.  You can see sample
  43. applications here:
  44.  
  45.   http://www.columbia.edu/kermit/ckscripts.html
  46.  
  47. This base was a natural fit for an FTP client, which was developed over
  48. the past few months and is now available for testing:
  49.  
  50.   http://www.columbia.edu/kermit/ftpclient.html
  51.  
  52. I think you will find that it has everything you are looking for:
  53. security, scriptability, as well as basic functionality you just won't
  54. find in any other FTP client.  A tutorial on scripting FTP is available
  55. here:
  56.  
  57.   http://www.columbia.edu/kermit/ftpscript.html
  58.  
  59. And a guide to sources for secure Telnet (and FTP) servers is here:
  60.  
  61.   http://www.columbia.edu/kermit/telnetd.html
  62.  
  63. - Frank